home *** CD-ROM | disk | FTP | other *** search
- onClipEvent(enterFrame){
- if(_root.timish == 0)
- {
- _root.timish = -1;
- _root.dm = random(4) + 1;
- _root["dm" + _root.dm].play();
- }
- else if(_root.timish > 0)
- {
- _root.timish--;
- }
- if(_root.prompt._currentframe > 3)
- {
- if(_root.score < -80 && _root.score > -100 && inc == 0)
- {
- _root.prompt.gotoAndStop(6);
- }
- if(_root.score < -55 && _root.score > -80 && inc == 0)
- {
- _root.prompt.gotoAndStop(7);
- }
- if(_root.score < -26 && _root.score > -55 && inc == 0)
- {
- _root.prompt.gotoAndStop(8);
- }
- if(_root.score < 0 && _root.score > -26 && inc == 1)
- {
- _root.prompt.gotoAndStop(9);
- }
- if(_root.score > 0 && _root.score < 26 && inc == 1)
- {
- _root.prompt.gotoAndStop(10);
- }
- if(_root.score > 26 && _root.score < 55 && inc == 1)
- {
- _root.prompt.gotoAndStop(11);
- }
- if(_root.score > 55 && _root.score < 80 && inc == 1)
- {
- _root.prompt.gotoAndStop(12);
- }
- if(_root.score > 80 && _root.score < 100 && inc == 1)
- {
- _root.prompt.gotoAndStop(13);
- }
- }
- if(_root.score <= -100)
- {
- _root.score = -55;
- stopAllSounds();
- _root.dm1.gotoAndStop(1);
- _root.dm2.gotoAndStop(1);
- _root.dm3.gotoAndStop(1);
- _root.dm4.gotoAndStop(1);
- _root.prompt.gotoAndStop(2);
- }
- else if(_root.score >= 100)
- {
- _root.score = 99;
- stopAllSounds();
- _root.dm1.gotoAndStop(1);
- _root.dm2.gotoAndStop(1);
- _root.dm3.gotoAndStop(1);
- _root.dm4.gotoAndStop(1);
- _root.prompt.gotoAndStop(3);
- }
- if(this._rotation < _root.score * 0.9 - 1)
- {
- inc = 1;
- this._rotation = this._rotation + 1;
- }
- else if(this._rotation > _root.score * 0.9 + 1)
- {
- inc = 0;
- this._rotation--;
- }
- else
- {
- inc = 2;
- }
- }
-